From e09f935147cae904883d3c45e3cd39b947f2e409 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Sat, 12 Jun 1993 16:52:03 +0000 Subject: [PATCH] * xterm.c (x_error_quitter, x_io_error_quitter): Remove calls to abort. We can always run Emacs with _Xdebug set to 1. --- src/xterm.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/xterm.c b/src/xterm.c index 54e19a45928..a9a10297bef 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -3803,9 +3803,11 @@ x_error_quitter (display, error) fprintf (stderr, "X protocol error: %s on protocol request %d\n", buf, error->request_code); +#if 0 /* While we're testing Emacs 19, we'll just dump core whenever we get an X error, so we can figure out why it happened. */ abort (); +#endif x_connection_closed (); } @@ -3820,9 +3822,11 @@ x_io_error_quitter (display) fprintf (stderr, "Connection to X server %s lost.\n", XDisplayName (DisplayString (display))); +#if 0 /* While we're testing Emacs 19, we'll just dump core whenever we get an X error, so we can figure out why it happened. */ abort (); +#endif x_connection_closed (); } -- 2.30.2